home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / PPCSmallEiffel / lib_show / cecil / example3 / cat.e < prev    next >
Encoding:
Text File  |  1998-01-16  |  195 b   |  12 lines

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class CAT inherit ANIMAL
  5.  
  6. feature 
  7.  
  8.    cry: STRING is "MEOW";
  9.  
  10. end 
  11.  
  12.